home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-211.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  95 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12325);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2002-0838");
  13.  
  14.  name["english"] = "RHSA-2002-211: ggv";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated packages for gv, ggv, and kdegraphics fix a local buffer overflow
  21.   when reading malformed PDF or PostScript files.
  22.  
  23.   [Updated 07 Jan 2003]
  24.   Added fixed packages for the Itanium (IA64) architecture.
  25.  
  26.   [Updated 06 Feb 2003]
  27.   Added fixed packages for Advanced Workstation 2.1
  28.  
  29.   Gv and ggv are user interfaces for the Ghostscript PostScript(R)
  30.   interpreter used to display PostScript and PDF documents on an X Window
  31.   System. KGhostview is the PostScript viewer for the K Desktop Environment.
  32.  
  33.   Zen Parse found a local buffer overflow in gv version 3.5.8 and earlier.
  34.   An attacker can create a carefully crafted malformed PDF or PostScript file
  35.   in such a way that when that file is viewed arbitrary commands can be
  36.   executed.
  37.  
  38.   ggv and kghostview contain code derived from gv and therefore have the same
  39.   vulnerability.
  40.  
  41.   All users of gv, ggv, and kghostview are advised to upgrade to the errata
  42.   packages which contain patches to correct the vulnerability.
  43.  
  44.  
  45.  
  46.  
  47. Solution : http://rhn.redhat.com/errata/RHSA-2002-211.html
  48. Risk factor : High';
  49.  
  50.  script_description(english:desc["english"]);
  51.  
  52.  summary["english"] = "Check for the version of the ggv packages";
  53.  script_summary(english:summary["english"]);
  54.  
  55.  script_category(ACT_GATHER_INFO);
  56.  
  57.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  58.  family["english"] = "Red Hat Local Security Checks";
  59.  script_family(english:family["english"]);
  60.  
  61.  script_dependencies("ssh_get_info.nasl");
  62.  
  63.  script_require_keys("Host/RedHat/rpm-list");
  64.  exit(0);
  65. }
  66.  
  67. include("rpm.inc");
  68. if ( rpm_check( reference:"ggv-1.0.2-5.1", release:"RHEL2.1") )
  69. {
  70.  security_hole(0);
  71.  exit(0);
  72. }
  73. if ( rpm_check( reference:"gv-3.5.8-18.7x", release:"RHEL2.1") )
  74. {
  75.  security_hole(0);
  76.  exit(0);
  77. }
  78. if ( rpm_check( reference:"kdegraphics-2.2.2-2.1", release:"RHEL2.1") )
  79. {
  80.  security_hole(0);
  81.  exit(0);
  82. }
  83. if ( rpm_check( reference:"kdegraphics-devel-2.2.2-2.1", release:"RHEL2.1") )
  84. {
  85.  security_hole(0);
  86.  exit(0);
  87. }
  88.  
  89. if ( rpm_exists(rpm:"ggv-", release:"RHEL2.1") )
  90. {
  91.  set_kb_item(name:"CAN-2002-0838", value:TRUE);
  92. }
  93.  
  94. set_kb_item(name:"RHSA-2002-211", value:TRUE);
  95.